57b41f0efd0f89f2b2640b4688914f25abca37cd,src/org/boofcv/android/AssociationActivity.java,AssociationProcessing,process,#ImageUInt8#,240

Before Change


		protected synchronized void process(ImageUInt8 gray) {
			if( checkPrevious ) {
				checkPrevious = false;
				if( hasLeft ) {
					detDesc.detect(graySrc);
					describeImage(listSrc, locationSrc);
				}
				if( hasRight ) {

After Change


		}

		@Override
		protected synchronized void process(ImageFloat32 gray) {
			if( target == 0 )
				return;

			detDesc.detect(gray);

			if( target == 1 ) {
				visualize.setSource(gray);